//5.1 - The bow class test chassis - Dirk Henkemans - Prima Publishing #include #include using namespace std; int main( void ); void bowTest(void); class Bow { //data member declarations string color; bool drawn; int numOfArrows; public: Bow(string aColor); //constructor ~Bow(); //destructor //methods void draw(); int fire(); }; Bow::Bow(string aColor) { numOfArrows = 10; drawn = false; color = aColor; srand((unsigned)time(0)); //seeds the time (we need the rand() function in the fire() method) } Bow::~Bow() { } //draws the bow void Bow::draw() { drawn = true; cout<< "The "<